Keycloak REST Services 1.2.0.Final

Path: / admin / realms / {realm} / clients / {app-name} / scope-mappings

Get all scope mappings for this client

Path parameters:
realm - realm name (not id!)
app-name -

Sub-Resources
Resources
NameDescription
clients
clients/{clientId}
Get the roles associated with a client's scope for a specific client.
clients-by-id
clients-by-id/{id}
Get the roles associated with a client's scope for a specific client.
realmGet list of realm-level roles associated with this client's scope.

Resource Methods
Method Summary
NameDescription
GET /admin/realms/{realm}/clients/{app-name}/scope-mappingsGet all scope mappings for this client

Method Detail

GET /admin/realms/{realm}/clients/{app-name}/scope-mappings

Get all scope mappings for this client

HTTP Example:
GET /admin/realms/{realm}/clients/{app-name}/scope-mappings
API Example:

ScopeMappedResource.getScopeMappings({'realm': /* name realm name (not id!) */,
  'app-name': /* name */});

Output:
MappingsRepresentation -
Produces:
application/json

Keycloak REST Services 1.2.0.Final